home *** CD-ROM | disk | FTP | other *** search
/ Danny Amor's Online Library / Danny Amor's Online Library - Volume 1.iso / html / faqs / faq / info-vax / part03 < prev    next >
Encoding:
Text File  |  1995-07-25  |  21.9 KB  |  482 lines

  1. Subject: Info-VAX: "Advanced" Common Questions
  2. Newsgroups: vmsnet.misc,comp.os.vms,news.answers,comp.answers
  3. From: munroe@dmc.com
  4. Date: 21 Nov 94 23:31:07 EDT
  5.  
  6. Archive-name:   info-vax/part03
  7. Last-modified:  1992/09/05
  8.  
  9. [Changes since last posting: None.]
  10.  
  11.            The Info-VAX Monthly Posting
  12.            ----------------------------
  13.            PART 3 -- Advanced "Common Questions".
  14.            (Coordinated by Dick Munroe, written by many others)
  15.  
  16. (Part 1 is an introduction to Info-VAX.  Part 2 is Beginner Common Questions.
  17. Part 4 is about how to find software.)
  18.  
  19. Save this message for future reference!
  20.  
  21. Table of Contents:
  22.  
  23. ,BAC   -- Advice on how NOT to backup your VAX            updated 1989-08-03
  24.           LEICHTER@VENUS.YCC.YALE.EDU (Jerry Leichter)
  25. ,BOOT  -- Booting a system whose disk is full.                  1992-08-12
  26.       rankin@eql.caltech.edu (Pat Rankin)
  27. ,DIR   -- Why is my directory so slow                  1992-08-09
  28.       Various people from vmsnet.internals
  29. ,SIG   -- How to set up automatic signatures, etc.          added 1989-09-29
  30.           CADS_COLE@GALLUA.BITNET (Kevin Cole)
  31. ,FLA   -- No question is stupid...                          added 1989-10-02
  32.           [A reminder to "us gurus" -TAL]
  33.           FASTEDDY@DFTNIC.GSFC.NASA.GOV (John McMahon)
  34. ,IMAGE-DUMP-ANALYSIS
  35.        -- Debugging using ANALYZE/PROCESS/IMAGE.        added 1992-09-05
  36.       Martin Jensen <mjensen@BBN.COM>
  37.       George Carrette <gjc@mitech.com>
  38. ,MCR   -- About MCR (Bruce Wright)                          added 1989-10-02
  39.           rti!bcw@MCNC.ORG
  40.  
  41. (the ",BAC", ",SIG", etc are keywords.  If you search for that text
  42. (including the ",") you will be brought to the beginning of that article.)
  43.  
  44. ---------------------------------------------------------------------
  45. ,BAC
  46. Subject: VMS Backup tips
  47. >From LEICHTER@VENUS.YCC.YALE.EDU ("Jerry Leichter") Tue Aug  1 10:01:00 1989
  48. Lines: 74
  49.  
  50. >[Various messages concerning long BACKUP times on a MicroVAX II, along with a
  51. >recommendation of the command line:
  52. >   $ back/log/ver *.*/ignore=inter mua0:backup.bck/sav/buf=5/blo=17408-
  53. >        /nocrc/group=0
  54. >]
  55. >
  56. > I think that Bob's response addresses part of the major problem with
  57. > BACKUPs on uVAX-IIs:  that of CRC.  On uVAX-IIs, the CRC instruction is
  58. > emulated in software as opposed to being in hardware as it is in its
  59. > bigger brothers.  As you might imagine, doing CRCs takes forever on a II.
  60. > /NOCRC is a MUST in your BACKUP command line.
  61.  
  62. In general, both of these pieces of advice - ESPECIALLY the first one!  -
  63. are EXTREMELY BAD.  They are the equivalent of "Locksmiths are SO expensive,
  64. I won't bother to install locks on my front door".  Such advice might make
  65. sense in some parts of the country, but try it in New York City....
  66.  
  67. Before considering this advice, decide for yourself just WHY you are doing
  68. backups.  Is it because you've heard that it's a good idea, or because it
  69. appears on your job description, but you don't REALLY expect ever to USE all
  70. those tapes you are writing?  Or is it because you want a safe copy of your
  71. data in case something goes wrong with your disk, or in case you just
  72. acciden- tally delete something important?
  73.  
  74. If it's the former, I'll suggest that you can actually make BACKUP run even
  75. faster; just add /CREATED/SINCE:TOMORROW.  Try it - you should see amazing
  76. results.  In fact, the results will be so good that you should be able to
  77. save all the typing for those other tacky qualifiers.
  78.  
  79. It it's the latter, consider what chances you are taking:
  80.  
  81.  - If you use /NOCRC, you are relying on the error detection capabilitites
  82. of the tape hardware.  This varies in ability to detect problems, depending
  83. on the kind of tape and the density.  Even at its best, it provides no
  84. protection against problems with the tape interface, with the bus, with
  85. memory, and so on.  ALL of these are known potential failure points.
  86.  
  87. - If you add /GROUP=0, you are disabling BACKUP's ability to recover from
  88. errors that develop on the tape while it is in storage, among other things.
  89. What you are getting in return is about 10% more data on the tape.  Sounds
  90. like a very poor tradeoff to me.
  91.  
  92.  - I don't know how the block size of 17408 was selected.  The default value
  93. (2048) was chosen by people with some data about tape failure statistics.
  94. It's a tradeoff:  The larger the block size, the more data you can fit on
  95. the tape - but the larger the probability of two blocks in a redundancy
  96. group suffering simultaneous errors, so that the data is irretrievably lost.
  97.  
  98. Of course, since redundancy groups have been disabled (by /GROUP=0) this
  99. makes little difference anyway.
  100.  
  101.  - Also about /BLOCK:  The combination of a large blocksize with a large
  102. buffer count can cause a reel-to-reel tape to run off the end of the reel.
  103. (Tapes have reflective "end of tape" markers well in from the end of the
  104. tape, but if enough data is already "in the pipe" it can be impossible to
  105. stop the drive in time.  Ever try threading a tape backwards?)
  106.  
  107. I can think of almost no reason to play with the redundancy group size,
  108. except for things like BACKUP savesets used to transfer stuff across a
  109. network where errors are unlikely and you can get another copy of the
  110. damaged stuff if you need it.
  111.  
  112. I can think of few reasons to play around with the block size.
  113.  
  114. I personally can't imagine a serious backup policy based on use of /NOCRC,
  115. at least as a universal policy.  (I suppose you MIGHT do weekly backups
  116. /CRC, and nightly incrementals /NOCRC, figuring that the cost of having to
  117. go back, at the very worst, to the weekly backup is small enough to justify
  118. the additional risk.)
  119.  
  120. There are significant tradeoffs to be made here.  "Speed of backup" is only
  121. one factor.  You have to decide for your own site how to balance this factor
  122. against the others.  But do it in an informed way!  Also, be ready to
  123. re-examine your conclusions as the data change:  BACKUP in VMS V5.2 should
  124. be much faster.  In particular, the CRC algorithms have been SIGNIFICANTLY
  125. sped up.
  126.  
  127.        -- Jerry
  128.  
  129. ---------------------------------------------------------------------
  130. ,BOOT
  131.  
  132. >Subject: Re: How to boot VMS from a failed AUDIT writing
  133. >From: rankin@eql.caltech.edu (Pat Rankin)
  134. >
  135. >In newsgroup vmsnet.misc, article <1992Aug10.142728.4397@mic.ucla.edu>,\
  136. > shinn@agsm.ucla.edu (Shinn-Tzong Wu) writes...
  137. >> Hi, we just encounteded one of our worst nightmare, the VAXStation 3100
  138. >> (running VMS 5.3) died probably because it ran out of disk space for  
  139. >> the AUDIT process.  Since the AUDIT process tried to write into the
  140. >> full disk in the process of rebooting, there seemed to be no way that we
  141. >> can bring the system up.  We tried to boot it from a stand alone tape but
  142. >> it won't access to any of the disks.  Can anyone suggest any help?  Thanks...
  143. >
  144. >     Use a conversational boot to bring up a minimum system.  For a 3100,
  145. >use B/1 at the `>>>' console prompt.  (If you have a console password
  146. >enabled, you'll have to enter it in order to use any variant of the boot
  147. >command other than just "B".)  From B/1, you'll get a `SYSBOOT>' prompt
  148. >where you can modify SYSGEN parameters; do the following
  149. >SYSBOOT> SET STARTUP_P1 "MIN"
  150. >SYSBOOT> CONTINUE
  151. >from there the system will boot normally, except that under a minimum
  152. >system many things are suppressed, including the audit server.  (Also
  153. >systartup_v5, the site-specific startup procedure, is suppressed, as are
  154. >sylogin and login.com once the system is up.)
  155. >
  156. >     Log in immediately as SYSTEM, use SET LOGIN/INTERACTIVE=1 to keep
  157. >ordinary users out, and then purge, delete, or move files to recover
  158. >sufficient disk space for normal operation.  Lastly, reset the system
  159. >parameters
  160. >$ run sys$system:sysgen
  161. >SYSGEN> USE CURRENT
  162. >SYSGEN> SET STARTUP_P1 ""
  163. >SYSGEN> WRITE CURRENT
  164. >SYSGEN> EXIT
  165. >and then reboot.
  166. >
  167. >     This kind of stuff should be covered in the "emergency procedures"
  168. >section of the system manager's manual(s).  Followups redirected to
  169. >vmsnet.sysmgt.
  170. >
  171. >        Pat Rankin, rankin@eql.caltech.edu
  172. >
  173. [Ed. note: The instructions to perform a minimum boot vary from
  174. processor to processor.  The instructions here are specific to a VAX
  175. 3100 (although most of the 3xxx product line seems to follow this
  176. "standard") NOT to all VAXen.  Check the Installation Supplement manual
  177. for your specific processor for the conversational boot procedure.]
  178. ---------------------------------------------------------------------
  179. ,DIR
  180.  
  181. >Subject: Why does emptying a dir take so long?
  182. >From: qb7g6@fel.tno.nl (Maarten Landzaat)
  183. >
  184. >I'm sorry if this is a FAQ. I don't often read VMS newsgroups.
  185. >A friend of mine using VAXstations 3100 and 4000(?) running
  186. >5.4 and 5.5 told me this striking story:
  187. >
  188. >He has a few directories containing a few hundred files. Sometimes, these
  189. >dirs need to be emptied. He then issues a simple delete *.*;* or whatever.
  190. >then VMS takes an INCREDIBLE time of 2 hours (5.4) or 45 minutes (5.5)
  191. >to delete the files.
  192. >
  193. >Now I've been working with VMS and unix, and didn't find that many
  194. >performance differences. But this is a VERY big difference. I've seen
  195. >lots of unix directories with hundreds of files, and delete time
  196. >seems linear. Deleting a few files on VMS does not take a long time,
  197. >at least IMO. Is VMS file deletion then not linear?
  198. >
  199. >Does anybody know why VMS takes such a long time?
  200. >Is it fundamental to the VMS filesystem structure?
  201.  
  202. #From: ewilts@galaxy.gov.bc.ca (Ed Wilts)
  203. #
  204. #I would hazard a guess that the size of the directory file exceeds 127 blocks.
  205. #The size of this file is proportional to the number of files in the directory
  206. #and the length of each file name.  I am surprised that you're seeing it with
  207. #only a few hundred files.
  208. #
  209. #Once you hit this magical limit [127 blocks], all hell breaks loose and you
  210. #wait forever to get any work done.  Spread your files over multiple
  211. #sub-directories if possible.
  212.  
  213. #From: granoff@ranger.enet.dec.com (Mark H. Granoff)
  214. #
  215. #Try deleting the files in reverse alphabetical order.  It'll take a little more
  216. #code (DCL, for example) than a simple DELE *.*.* command, but it'll improve the
  217. #performance of that logical operation.
  218. #
  219. #Directory files are maintained in alphabetical order.  If you delete the first
  220. #file in a directory, the directory file must be compressed and/or shuffled to
  221. #remove that first entry.  In a directory containing many files, this will take
  222. #some time.
  223.  
  224. #From: dfilip@colornet.UUCP
  225. #
  226. #If all access to the directory becomes VERY SLOW (including DIR's) then
  227. #I would suggest looking at the SYSGEN parameter ACP_DIRCACHE. This is the
  228. #number of blocks of a directory file that are kept in cache. Although a few
  229. #hundred files should NOT create an extremely large directory, if there were
  230. #ever a lot more (i.e., thousands) then this could be your problem since
  231. #directory files are not automatically compressed when files are deleted.
  232. #
  233. #ACP_DIRCACHE should be slightly larger than your largest directory file.
  234. #The parameter is dynamic, so you can change it without rebooting and see
  235. #if it fixes your problem.
  236. ---------------------------------------------------------------------
  237. ,SIG
  238. >From: "Kevin Cole at Gallaudet U. Washington DC" <CADS_COLE@GALLUA.BITNET>
  239. Subject: Automatic Signatures, Emblems and ">" a la EDT
  240.  
  241. Several people have asked me about automatic emblems.  I'm not saying this is
  242. the best way to do things...  I'm just saying it's the way I do things.  Seems
  243. to work OK for me.  Well, here's how I do it:
  244.      
  245.         1) Create a file with your particular emblem or signature in it.
  246.            (I called mine SIGNATURE.TXT.)
  247.      
  248.         2) Add the following lines in your LOGIN.COM:
  249.             $ DEFINE/NOLOG MAIL$EDIT    SYS$LOGIN:MAILEDIT.COM
  250.             $ MAIL      :== MAIL/EDIT=(SEND,REPLY=EXTRACT,FORWARD)
  251.      
  252.         3) Cut out the following two files (MAILEDIT.COM and MAILEDT.INI)
  253.      
  254. <Cut here>-------------------- MAILEDIT.COM -------------------------<Cut here>
  255. $ SET TERM/NOBROADCAST
  256. $ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'
  257. $ IF P1 .EQS. "" THEN GOTO NOINPUT
  258. $ EDIT /COMMAND=SYS$LOGIN:MAILEDT.INI/OUTPUT='P2' 'P1'
  259. $ SET TERM/BROADCAST
  260. $ EXIT
  261. $NOINPUT:
  262. $ EDIT /COMMAND=SYS$LOGIN:MAILEDT.INI 'P2'
  263. $ SET TERM/BROADCAST
  264. $ EXIT
  265. <Cut here>-----------------------------------------------------------<Cut here>
  266.      
  267.      
  268. <Cut here>-------------------- MAILEDT.INI --------------------------<Cut here>
  269. SET CURSOR 0:20
  270. SET SCREEN 80
  271. SET WRAP 79
  272. SET SEARCH BEGIN
  273. SET ENTITY WORD '^H^I^J^K^L^M !"#$%&''()*+,-./:;<=>?@[\]^_`{|}~'
  274. SET WORD NODELIMITER
  275. DEFINE KEY GOLD 14 AS "5SHL."
  276. DEFINE KEY GOLD 15 AS "5SHR."
  277. DEFINE KEY GOLD D AS "DATE."
  278. C; ER -L 32000(62ASC -2L) ER EX
  279. INC SYS$LOGIN:SIGNATURE.TXT
  280. F BEG
  281. C; IDate sent: ^Z DATE ^M EX
  282. SET MODE CHANGE
  283. <Cut here>-----------------------------------------------------------<Cut here>
  284.      
  285.      
  286. NOTE: Change the ^H^I^J^K^L^M to control characters in the SET ENTITY command.
  287.       Change the ^Z to control-Z (but NOT the ^M) in the second last line.
  288.      
  289. Explaination:
  290.      
  291. The above does a bit more than what is asked for...  The reason I spawn instead
  292. of using callable EDT or TPU is because I prefer to turn off broadcasts while
  293. I'm editing, and because the COM file runs a non-standard INI file.  The
  294. special INI file is what adds the emblem/signature.  It also does a few other
  295. handy things like adding the time the message was sent, and adding the ">"
  296. character to the beginning of every old line in a reply.  (That's a trick I
  297. learned from someone on this list ages ago.)  The guts are in the last five
  298. lines.
  299.      
  300. First we move to the end of the buffer (ER).  Backup one line (-L).  Insert a
  301. ">" (62ASC) and go to previous line (-2L) 32000 times.  When we've finally
  302. added as many ">" as we can, go back to the end of the buffer (ER).  Add the
  303. signature file. (INC SYS$LOGIN:SIGNATURE.TXT).  Go back to the top of the file
  304. (F BEG) and add the current time and date (IDate sent: ^Z DATE ^M EX).  Lastly
  305. give control back to the sender (SET MODE CHANGE).
  306.  
  307. ---------------------------------------------------------------------
  308. ,FLA
  309. Subject:  No question is stupid...
  310. >From:     John McMahon - NASA GSFC ADFTO - 301-286-2045
  311.           <FASTEDDY@DFTNIC.GSFC.NASA.GOV>
  312. Date:     Thu, 3 Aug 89 12:18:10 EDT
  313.  
  314. (Commentary having very little to do with Vaxen follows...)
  315.  
  316. Sample antagonistic response to novice question:
  317. ***> RTFM! Page 7-7 in binder 8B, the version 4 doc set. Just set
  318. ***> bit 28 and you're done! And stop asking such silly questions,
  319. ***> which are so easily answered, will you!
  320.  
  321. It seems to me that usefulness of Info-Vax/Comp.Os.Vms is decreased when
  322. someone out on the net asks a question and is greeted with comments like those
  323. above.  To you the question may seem trivial...  However, it wasn't to the
  324. person posting.
  325.  
  326. First thing to keep in mind:  Even if it's in the manuals, the person may not
  327. be able to find it.  If you posted a question about "How do I increase the
  328. maximum record size for DECnet I/O", I could easily answer RTFM.  But that's
  329. only because I found it once...  It took a couple of hours, several manuals,
  330. and a little luck.  Some people aren't that lucky, and some don't have access
  331. to full documentation sets.  Also, when was the last time you actually read an
  332. index that pointed to exactly what you wanted the first time ?  Most indexes
  333. imply that the user knows approximately what he/she is looking for first...
  334. What is a user to do when he/she doesn't know where to look ?  How about ask
  335. the Info-Vax gurus...
  336.  
  337. Second thing to keep in mind:  Not everyone here is at the same level of
  338. experience.  Just because you are talented/knowledgeable you don't have to hold
  339. that over a novice who is lost in VMS.  Remember that at one point, all of the
  340. gurus (including you) were novices.  How far would you have advanced if people
  341. you asked for help from said "Read the manuals...  You ask silly questions..."
  342. Probably not as far as you have gotten.
  343.      
  344. Third thing:  Behind each posting is a person.  The network creates an
  345. 'artificial buffer' which keeps us separate enough that we forget.  Just
  346. because it's e-mail doesn't meen you shouldn't be polite.  We are humans after
  347. all...  We are supposed to be civilized...
  348.      
  349. Boiled down to a point:  Info-Vax is a technical discussion involving everyone
  350. from the Novice to Guru level.  Let's keep it polite and technical...  Don't
  351. post personal editorial comments...
  352.      
  353. (I know, I probably just violated that...)
  354.      
  355. Please direct comments to me (not the list)...
  356. /-------------------------------------+---------------------------------------\
  357. | John "Fast Eddie" McMahon           |    Span: SDCDCL::FASTEDDY (Node 6.9)  |
  358. | Advanced Data Flow Technology Office|    Arpa: FASTEDDY@DFTNIC.GSFC.NASA.GOV|
  359. | Code 630.4 - Building 28/W255       |  Bitnet: FASTEDDY@DFTBIT              |
  360. | NASA Goddard Space Flight Center    |GSFCmail: JMCMAHON                     |
  361. | Greenbelt, Maryland 20771           |   Phone: x6-2045                      |
  362.  
  363. --------------------------------------------------------------------------------
  364. ,IMAGE-DUMP-ANALYSIS
  365. >Subject: Analyzing a process dump
  366. >From: mjensen@BBN.COM (Martin Jensen)
  367. >
  368. >    I've got an executable that runs with the /dump qualifier.  I expect
  369. >    that, on occasion, the process will crash.  (as a matter of fact, we
  370. >    intentionally crash it if software detects an unrecoverable condition
  371. >    in the code).
  372. >
  373. >    The problem is that the dump files are pretty useless.  'show  calls'
  374. >    reports  only the module names - no routine names - and I've only got
  375. >    access to universal symbols.  The program is compiled with the /debug
  376. >    switch and linked with /trace.
  377. >
  378. >    Ideally, I would like to be able use anal/proc/image=xxx against the
  379. >    dump from the normally linked executable - where xxx would be an
  380. >    image containing the full DST and GST.  The couple of options I have
  381. >    tried allow me to analyze the dump, but the symbol locations don't
  382. >    match properly between the images.
  383. >
  384. >    Any ideas???
  385.  
  386. >Subject: Re: Analyzing a process dump
  387. >From: gjc@mitech.com (George J. Carrette)
  388. >
  389. >The trick people use is to LINK/DEBUG and then use a command
  390. >procedure that calls VMS PATCH to change the image back to thinking
  391. >it was LINK/NODEBUG.
  392. >
  393. >That way you get all the symbols in the image without having it start
  394. >up in the debugger.
  395. >
  396. >You can get a SETDEBUG.C or NSETDEBUG.COM, or other various of that
  397. >from various places. Probably VMSNET.SOURCES archives.
  398. >
  399. >-gjc
  400.  
  401. --------------------------------------------------------------------------------
  402. ,MCR
  403. Subject: Response to Question about "MCR"
  404. >From: Bruce Wright <rti!bcw@MCNC.ORG>
  405. Date: Thu, 28 Sep 89 15:31:08 GMT
  406.  
  407. In article <22331@cup.portal.com>, Wiley_M_Sanders@cup.portal.com writes:
  408. >    MCR stands for "Monitor Console/Control Routine", and is a vestigial
  409. > element left over when PDP-11 programs could be run under VMS. MCR is/was
  410. > the RSX-11 equivalent of the RUN command, although it really RUNS the
  411. > image as a foreign command, as opposed to RUN, which launches the
  412. > installed image. In that way it's not exactly a synonym for
  413. > RUN SYS$SYSTEM.
  414.      
  415. Sorry if this is too pedantic for the net.censors, if you don't like it
  416. just hit the "n" key.
  417.      
  418. The MCR command on VMS is more-or-less like RUN on VMS, though with some
  419. of the slight differences that have been mentioned here and elsewhere - but
  420. MCR on RSX was NOT the RSX equivalent of RUN.  VMS doesn't have an exact
  421. equivalent of MCR - the closest thing is DCL;  MCR was the user command
  422. line interface module under RSX.  As noted, MCR stands for "Monitor
  423. Console Routine" and was the prompt that the user saw:
  424.      
  425.     MCR>your-RSX-command
  426.      
  427. RUN was a very respectable RSX command - it ran a user image as a task.
  428. RSX commands were one-to-three letter commands which were derived from the
  429. names of installed tasks (sort of like an installed image on VMS, but when
  430. it was invoked it would start a new task [=process on VMS]).
  431.      
  432. RSX commands were one-to-three letter commands which were derived from the
  433. names of installed tasks.  These were run as separate tasks (=process on
  434. VMS) when the corresponding command was entered (everything on RSX was a
  435. task, image activation corresponded to task activation).  Since there were
  436. a number of different versions of RSX (RSX-11A, RSX-11B, RSX-11C, RSX-11D,
  437. RSX-11M, RSX-11M+, RSX-11S, IAS, POS, and maybe others), some of which
  438. shared only a few architectural and historical things in common, the
  439. precise details of the implementation differed somewhat between members
  440. of the family.
  441.      
  442. Later versions of RSX (and some of its derivatives such as IAS) did include
  443. a DCL interpreter which had numerous similarities (and differences) with
  444. respect to VMS DCL.  Because of the architecture of the systems, many of
  445. the DCL commands in the RSX family would start a new task (=process) rather
  446. than run an image in the same process as on VMS - but the effect from the
  447. user point of view was very similar.
  448.      
  449. >    Alas, the MCR command interpreter seems to be absent from VMS 5.2. At
  450. > least when I type SPAWN/CLI=MCR, it can't be found.
  451.      
  452. The MCR command is left over from when the RSX compatibility mode software
  453. was bundled in with VMS.  Those of you that have been around since VMS V1.0
  454. probably remember that, for example, DIRECTORY was implemented as PIP /LI
  455. and that many commands (including DIRECTORY) would spit out RSX-like error
  456. messages like "PIP -- No such file(s)".  It started out as much as an aid
  457. for DEC to get all that utility software running on the VAX as it did as an
  458. aid for helping customer conversions.
  459.      
  460. Since at least V4.0 this has been separate product (VAX-11 RSX) which sites
  461. with an earlier license automatically had a license to use.  When it was
  462. made a separate product, all the RSX code (MCR, PIP, TKB, FLX, and all the
  463. other friends from the RSX world, and BACKTRANS.EXE and other things from
  464. the VMS world which made the whole mess work) were removed and made part
  465. of the VAX-11 RSX product.
  466.      
  467. When this was done, the MCR command was probably left in the DCL tables
  468. because removing it would break too many command files and annoy too many
  469. people who had gotten used to typing "MCR mumble" instead of the wordier
  470. "RUN SYS$SYTEM:mumble".
  471.      
  472.      
  473.                         Bruce C. Wright
  474. --
  475. Dick Munroe                Internet: munroe@dmc.com
  476. Doyle Munroe Consultants, Inc.        UUCP: ...uunet!thehulk!munroe
  477. 267 Cox St.                Office: (508) 568-1618
  478. Hudson, Ma. USA                FAX: (508) 562-1133
  479.  
  480. GET CONNECTED!!! Send mail to info@dmc.com to find out about DMConnection.
  481.  
  482.